home *** CD-ROM | disk | FTP | other *** search
/ Business Heaven / Business Heaven.iso / maillist / reliance / hinstall.bat < prev    next >
DOS Batch File  |  1991-12-06  |  2KB  |  50 lines

  1. echo off
  2. if %2x == x goto instruct
  3. echo This installs the Reliance Mailing List program and documentation
  4. echo from a floppy disk in drive %1: to a hard disk, drive %2:.
  5. echo  
  6. echo If this is NOT what you wish to do, press the Ctrl key and the C key
  7. echo at the same time, and then type Y.  Otherwise
  8. pause
  9. echo  
  10. echo OK, here we go.  If you see error messages, enter %0 with
  11. echo no other parameters to see instructions and then try again.
  12. if exist %2:\MAIL\NUL goto subdirok
  13. md %2:\MAIL > nul
  14. REM if not exist %2:\MAIL\NUL md %2:\MAIL > nul
  15. echo  
  16. echo Making directory %2:\MAIL.
  17. :subdirok
  18. echo  
  19. echo Extracting the program and documentation from the archive file . . .
  20. %1:arce %1:mail24 %2:\MAIL /r
  21. if errorlevel 1 goto badarce
  22. if not exist %1:\register\nul goto noreg
  23. echo  
  24. echo Copying Registered User programs . . .
  25. copy %1:\register\*.* %2:\MAIL
  26. :noreg
  27. goto goodarce
  28. :badarce
  29. echo  
  30. echo ERROR -- ARCHIVE EXTRACTION FAILED
  31. echo Enter %0 to see instructions and then try again.
  32. goto end
  33. :goodarce
  34. cd %2:\MAIL
  35. %2:
  36. echo  
  37. echo Installation complete.  The program is on drive %2 in the subdirectory MAIL.
  38. echo You are now in %2:\MAIL.  Read the manual, MAIL240.DOC.
  39. goto end
  40. :instruct
  41. echo  
  42. echo Oops -- you must enter two letters after %0.  Type letters only,
  43. echo no colons, and separate %0 and the letters with spaces.
  44. echo The first letter is the floppy disk drive you are installing FROM.
  45. echo The second letter is the hard disk you are installing TO.
  46. echo For instance, to install from drive A: to drive C:, Enter:
  47. echo  
  48. echo      %0 A C
  49. :end
  50.